@media screen and (max-width: 767px) {
    header{
        width: 100%;
        height: 5%;
        display:flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: #1c1c1c;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    body{
        display: flex;
        flex-direction: column;
        align-items: center;
        background-image: linear-gradient(to bottom, #3a3a3a, #1c1c1c);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        margin: 0px;
    }
    
    .modal{
        display: none;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
    }
    
    .modal-contenido {
        display:flex;
        color: white;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: bold;
        font-size: 30px;
        flex-direction: column;
        align-items: stretch;
        align-content: flex-start;
        width: 80%;
        max-height: 80%;
        background-color: #3a3a3a;
        padding: 30px;
        border-radius: 20px;
    }
    
    .serviceLogo{
        width: 50px;
        height: 50px;
        background-size:cover;
        background-position: center center;
        border-radius: 10px;
        margin-inline: 5px;
    }
    
    .service-container{
        margin-top: 15px;
        display:flex;
        flex-direction: column;
        align-items: stretch;
        align-content: center;
    }
    
    .logo-container{
        display:flex;
        flex-direction: row;
        margin-bottom: 10px;
    }
    
    .caption{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 15px;
        margin-top: 20px;
        color: white;
    }
    
    .category{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 15px;
        line-height: 45px;
        margin-right: 10px;
        color: white;
    }
    
    .paragraph{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: lighter;
        font-size: 13px;
        color: white;
    }
    
    #filmDescription{
        margin-top: 25px;
    }
    
    .logoTitle{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: bold;
        font-size: 35px;
        margin-left: 25px;
        color: white;
    }

    .logoTitle:hover{
        color:grey;
    }
    
    .searcher {
        width: 85%;
        margin-top: 15px;
        text-align: center;
        background-color: #b5b5b5;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .results{
        display: flex;
        width: 100%;
        margin-top: 50px;
        margin-left: 20px;
        margin-right: 20px;
        flex-direction: row;
        justify-content: space-evenly;
        align-content: stretch;
        flex-wrap: wrap;
    }
    
    .filmOption{
        width:  169px;
        height: 300px;
        border: 2px solid rgba(0,0,0,0.2);
        border-radius: 10px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
        margin: 5px;
        background-size:cover;
        background-position: center center;
        transition: transform 0.3s;
    
    }
    
    .filmOption:hover {
        transform: scale(1.1);
      }
    
    label[id="searchLabel"]{
        font-family: Arial, Helvetica, sans-serif;
        font-size: 45px;
        font-weight: bold;
        
    }
    
    input[type="text"] {
        border: none;
        padding: 10px;
        border-radius: 15px;
        width: 90%;
        height: 30px;
        font-size: 30px;
    }

    #aboutButton{
        color: white;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 20px;
        padding-right: 20px;
    }

    #aboutButton:hover{
        color: grey;
    }

    .itemContainer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .item{
        background-color: #b5b5b5;
        border-radius: 5px;
        width: 90%;
        margin: 10px;
        padding: 10px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    }

    .itemTitle{
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
    }

    .itemParagraph{
        font-family: Arial, Helvetica, sans-serif;
        margin-top: 10px;
        margin-bottom: 0px;
    }
  }